/* 1. BASE & CONTAINERS */
.fb-data-scope {
    background: #080808;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.fb-data-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    /* Thoda padding mobile ke liye */
    width: 100%;
    box-sizing: border-box;
    margin-top: 50px;
}

/* 2. TYPOGRAPHY (Responsive Fonts) */
.fb-data-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.fb-data-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 5px;
    background: #ffcc00;
}

.fb-data-title span {
    color: #ffcc00;
}

.fb-data-center {
    text-align: center;
    margin-bottom: 40px;
}

.fb-data-center .fb-data-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* 3. HERO SECTION */
.fb-data-hero {
    padding: clamp(60px, 10vh, 150px) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc48?q=80&w=1600') center/cover;
}

.fb-data-tag {
    color: #ffcc00;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
}

.fb-data-h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 900;
    margin: 15px 0;
    line-height: 1.2;
}

.fb-data-h1 span {
    color: #ffcc00;
}

.fb-data-p {
    max-width: 650px;
    color: #bbb;
    font-size: 1rem;
    margin-bottom: 30px;
}

.fb-data-action {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* 4. BUTTONS */
.fb-data-btn-y {
    background: #ffcc00;
    color: #000;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
}

.fb-data-btn-w {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
}

.fb-data-btn-y:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* 5. SECTIONS & GRIDS */
.fb-data-section {
    padding: clamp(40px, 8vh, 80px) 0;
}

.fb-data-bg-dark {
    background: #030303;
}

/* Desktop Row */
.fb-data-flex-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.fb-data-resp-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #333;
    display: block;
}

.fb-data-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.fb-data-s-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #ffcc00;
    font-size: 0.9rem;
}

/* 6. CARDS */
.fb-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.fb-data-card {
    background: #111;
    border-radius: 12px;
    border: 1px solid #222;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.fb-data-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 3px solid #ffcc00;
}

.fb-data-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-data-card-body {
    padding: 20px;
    flex-grow: 1;
}

.fb-data-featured {
    border-color: #ffcc00;
    background: #1a1a1a;
}

/* 7. DUAL LIST */
.fb-data-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.fb-data-list-wrap {
    padding: 30px;
    border-radius: 15px;
    background: #111;
    border: 1px solid #222;
}

.fb-data-y-border {
    border: 2px solid #ffcc00;
}

.fb-data-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fb-data-ul li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.fb-data-ul li::before {
    content: '➜';
    position: absolute;
    left: 0;
    color: #ffcc00;
}

/* 8. CTA */
.fb-data-cta {
    background: #ffcc00;
    color: #000;
    padding: 50px 0;
}

.fb-data-cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* ==========================================
       RESPONSIVE MEDIA QUERIES
       ========================================== */

/* TABLET (Under 992px) */
@media (max-width: 992px) {
    .fb-data-flex-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fb-data-img-main {
        order: -1;
    }

    /* Image text ke upar aayegi */
    .fb-data-hero {
        text-align: center;
    }

    .fb-data-action {
        justify-content: center;
    }

    .fb-data-p {
        margin: 0 auto 30px;
    }

    .fb-data-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .fb-data-specs {
        justify-content: center;
    }

    .fb-data-dual {
        grid-template-columns: 1fr;
    }

    .fb-data-cta-flex {
        justify-content: center;
        text-align: center;
    }
}

/* MOBILE (Under 576px) */
@media (max-width: 576px) {
    .fb-data-container {
        padding: 0 20px;
    }

    .fb-data-action {
        flex-direction: column;
    }

    .fb-data-btn-y,
    .fb-data-btn-w {
        width: 100%;
        box-sizing: border-box;
    }

    .fb-data-grid {
        grid-template-columns: 1fr;
    }

    .fb-data-specs {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .fb-data-section {
        padding: 50px 0;
    }

    .fb-data-list-wrap {
        padding: 20px;
    }

    .fb-data-cta-flex h2 {
        font-size: 1.5rem;
    }
}